From: Steven G. Johnson Date: Fri, 18 Jul 2014 15:35:02 +0000 (-0400) Subject: replace ar with $(AR) for #4 X-Git-Tag: archive/raspbian/2.11.3-2+rpi1^2~24^2^2~243 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=48645e36e4e07d550cf5f410ec254c7a03937e6a;p=utf8proc.git replace ar with $(AR) for #4 --- diff --git a/Makefile b/Makefile index b9e1c06..60f0423 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ cflags = -O2 -std=c99 -pedantic -Wall -fpic $(CFLAGS) cc = $(CC) $(cflags) - +AR = ar # meta targets @@ -23,7 +23,7 @@ utf8proc.o: utf8proc.h utf8proc.c utf8proc_data.c libmojibake.a: utf8proc.o rm -f libmojibake.a - ar rs libmojibake.a utf8proc.o + $(AR) rs libmojibake.a utf8proc.o libmojibake.so: utf8proc.o $(cc) -shared -o libmojibake.so utf8proc.o